body{
	margin:0;
	width: 100%;
}

/*Navigation Styles Here*/
#header{
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	background: #0d3653;
	z-index: 5;	
	
}
#logo{
	color: white;
	font-size: 50px; 
	letter-spacing: 6px;
}
#logo-text{
	color: white;
	font-size: 24px;
	letter-spacing: 5px;
}
#logo, #logo-text, #nav-container{
	margin: 0;
	font-family: 'Prompt', sans-serif;
	text-transform: uppercase;
	
}
#hidden-menu{
	opacity: 0;
}
#nav-container ul li{
	letter-spacing: 4px;
	margin-right: 50px;
	display: inline-block;
	font-size: 18px;
	cursor: pointer;
}
nav ul{
	margin: 0;

}
a:link{
	color: white;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
a:active{
	color: #0d3653;
}
a:visited{
	color: white;
	text-decoration: none;
}
#logo-container{
	text-align: center;
	margin-bottom: 50px;
}
#nav-container{
	text-align: center;
}
#header-img-container{
	margin-bottom: 20px;
	height: 300px;
	text-align: center;
}
#header-img-container img {
	height: 250px;
	width: 250px;
}
/*BODY WRAPPER STYLES & ABOUT ME*/
.underline-link:link{
	text-decoration: underline;
	cursor: pointer;
	color: #0d3653;
}
.underline-link:active{
	text-decoration: underline;
	cursor: pointer;
	color: #0d3653;
}
.underline-link:hover{
	text-decoration: underline;
	cursor: pointer;
	color: #0d3653;
}
.underline-link:visited{
	text-decoration: underline;
	cursor: pointer;
	color: #0d3653;
}
.bold{
	font-weight: 700;
}
#body-wrapper{
	padding-top: 100px;
	width: 100%;
	max-width: 75rem;
	margin: auto;
}
.section-title{
	margin-top: 50px;
	text-align: center;
	text-transform: uppercase;
	font-size: 36px;
	letter-spacing: 4px;

}
.section-content {
	font-size: 20px;
	margin-bottom: 20px;
}
	/*Button styles*/
.section-content .button{
	text-align: center;
	width: 200px;
	margin: auto;
	font-size: 18px;
	margin-top:20px;
}
.button{
	border: solid 5px #0d3653;
	padding:5px; 
}
.button:hover{
	border-color: #0d3653;
	background: #0d3653;
	padding:5px; 
	color: white;
	cursor: pointer;
	transition:.5s;
}
/*shared section styles*/
#about-container, #publications-container, #resume-container{
	color:#0d3653;
	font-family: 'Prompt', sans-serif;
}
.line-divider{
	border-top: 1px solid #0d3653;
	margin-bottom:50px; 
}

/*Publications Styles*/
#publications-container .section-content{
	width: 100%;
	height: 400px;

}
.section-content .publication-images-container img{
	width: 25%;
	float: left;
	height: auto;
	margin-right: 10%;

}
.section-content .publication-title-container{
	width: 60%;
	float: left;
	height: 200px;
}

/*Resume Styles*/
#resume-container{
	margin-bottom: 100px;
}
/*Experience Styles*/
.experience-content-wrapper{
	margin-bottom: 70px;
}
/*Assistantship Styles*/
.section-subheader{
	font-size: 28px;
}
.section-content .assistantship-content-wrapper{
	width: 40%;
	float:left;
	margin: 5%;
}

.assistantship-content-wrapper{
	height: 600px;
}
/*Awards Styles*/
.awards-wrapper{
	text-align: center;
}
.awards-wrapper i{
	color: #0d3653;
	font-size: 52px;
	padding-top: 100px;
}
.awards-wrapper #awards-row-1-1,.awards-wrapper #awards-row-1-2,.awards-wrapper #awards-row-2-1,.awards-wrapper #awards-row-2-2{
	width: 50%;
	float: left;
	height: 300px;
}
.awards-wrapper #awards-row-1-1:hover,.awards-wrapper #awards-row-1-2:hover,.awards-wrapper #awards-row-2-1:hover,.awards-wrapper #awards-row-2-2:hover{
	background: #0d3653;
	color:white;
	transition:.5s;	
}
.awards-wrapper #awards-row-1-1:hover i, .awards-wrapper #awards-row-1-2:hover i, .awards-wrapper #awards-row-2-1:hover i, .awards-wrapper #awards-row-2-2:hover i{
	color: white;
	transition:.5s;
}
/*Software Styles*/
#software-content-wrapper{
	text-align: center;
	font-size: 72px;
	cursor: pointer;
}
#software-content-wrapper #software-content{
	font-size: 24px;
}
/*Contact Styles*/
#contact-wrapper{
	text-align: center;
	width: 100%;
	height: 200px;
	background: #0d3653;
	color: white;
	font-size: 32px;
	font-family: 'Prompt', sans-serif;
}
#contact-wrapper{
	text-align: center;
}
#social-wrapper{
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
}
#contact-wrapper #social-wrapper i{
	font-size: 34px;
}
#contact-wrapper #social-wrapper i:hover{
	background: white;
	color: #0d3653;
	transition:.5s;
	cursor: pointer;
}
#back-to-top-btn{
	font-size: 24px;
	text-align: center;
	width: 250px;
	border: solid 3px white;
	margin:auto;
	cursor: pointer;
	padding: 5px;
}
#back-to-top-btn:hover{
	border-color: #0d3653;
	background: white;
	color: #0d3653;
	transition:.5s;
}

/*Media Queries*/

/*Anything below the width of 1112px - 710px*/
@media only screen and (max-width: 1112px){

#body-wrapper{
	width: 100%;
	font-size: 18px;
}
.section-title,.section-title .section-subheader {
	font-size: 24px;
	margin-top: 50px;
}
.section-content{
	margin-bottom: 50px;
	font-size: 18px;
}
.line-divider{
	display: none;
}
/*About Container Styles*/
#about-container {
	width: 100%;
}
#about-container .section-content{
	margin: auto;
	width: 80%;
	padding-bottom: 20px;
}
/*Publications Styles*/
#publications-container .section-content{
	width: 100%;
	height: 600px;
	margin: auto;
	text-align: center;
	margin-bottom: 75px;
}
.section-content .publication-images-container img{
	float: none;
	height: auto;
	width: 25%;
	margin: auto;
}
.section-content .publication-title-container{
	width: 80%;
	float: none;
	height: 200px;
	font-size: 16px;
	margin: auto;
}
/*Resume Styles*/
#resume-container{
	margin-bottom: 50px;
}
/*Experience Styles*/

.section-content .experience-content-wrapper {
	width: 80%;
	margin: auto;
	margin-bottom: 10px;
}
.experience-content-wrapper div{
	padding-bottom: 10px;
}
/*Assistantship Styles*/
.section-content .assistantship-content-wrapper{
	float:none;
	width:80%;
	height:400px;
	margin: auto;
}
/*Awards Styles*/
.awards-wrapper{
	text-align: center;
	width: 100%;
}
.awards-wrapper i{
	color: #0d3653;
	font-size: 52px;
	padding-top: 100px;
}
.awards-wrapper #awards-row-1-1,.awards-wrapper #awards-row-1-2,.awards-wrapper #awards-row-2-1,.awards-wrapper #awards-row-2-2{
	width: 100%;
	float: none;
	height: 300px;
}
#contact-wrapper{
	height: 200px;
}
/*End of 1st Query*/


/*Mobile 710px and under*/
@media only screen and (max-width: 710px){
/*Header Styles*/
#header{
	width: 100%;
	padding-top: 40px;
	padding-bottom: 10px;
	background: #0d3653;
	z-index: 5;	
	
}
#logo-container{
	float: left;
	width: 85%;
	margin: auto;

}
#logo{
	color: white;
	font-size: 18px; 
	letter-spacing: 6px;

}
#logo-text{
	color: white;
	font-size: 14px;
	letter-spacing: 5px;
}
#hidden-menu{
	color: white;
	width: 15%;
	opacity: 1;
	float: right;
	font-size: 28px;

}
#hidden-menu i{
	cursor: pointer;
}
#nav-container ul li{
	opacity: 0;
}
#header-img-container{
	display: none;
}
#header-img-container img {
	display:none;
}
/*Publications Styles*/	
#publications-container .section-content, .section-content .publication-title-container {
	height: auto;
	margin-bottom: 60px;
}
/*Assistantship Styles*/
.section-content .assistantship-content-wrapper{
	float:none;
	width:80%;
	height:auto;
	margin: auto;
}
/*Contact Stuff*/
#contact-wrapper{
	height: 200px;
}

}
